【例子介绍】c#版 outlook bar 包括源码
【相关图片】
【源码结构】
文件清单
└── outlook bar组件
├── 1-outlook
│ └── UtilityLibrary.dll
├── 2
│ └── UtilityLibrary.dll
├── AspxCn说明.txt
└── outlookbar_src
├── Outlookbar
│ ├── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── Outlookbar.exe
│ │ ├── Outlookbar.pdb
│ │ ├── UtilityLibrary.dll
│ │ └── UtilityLibrary.pdb
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── IconImages.resX
│ ├── Menus.resources
│ ├── obj
│ │ └── Debug
│ │ ├── Demo.Form1.resources
│ │ ├── IconImages.resources
│ │ ├── Outlookbar.exe
│ │ ├── Outlookbar.exe.incr
│ │ ├── Outlookbar.pdb
│ │ ├── Outlookbar.projdata
│ │ ├── Outlookbar.projdata1
│ │ ├── temp
│ │ ├── TempPE
│ │ └── TreeViewImages.resources
│ ├── Outlookbar.csproj
│ ├── Outlookbar.csproj.user
│ ├── Outlookbar.ico
│ ├── Outlookbar.sln
│ ├── Outlookbar.suo
│ └── TreeViewImages.resX
├── outlookbar_demo
│ ├── Outlookbar.exe
│ └── UtilityLibrary.dll
└── UtilityLibrary
├── AssemblyInfo.cs
├── bin
│ └── Debug
│ ├── UtilityLibrary.dll
│ └── UtilityLibrary.pdb
├── Collections
│ ├── CollectionWithEvents.cs
│ ├── MenuCommandCollection.cs
│ ├── OutlookBarBandCollection.cs
│ ├── OutlookBarItemCollection.cs
│ ├── RebarBandCollection.cs
│ └── ToolBarItemCollection.cs
├── CommandBars
│ ├── ChevronMenu.cs
│ ├── ChevronMenu.resx
│ ├── CommandBarMenu.cs
│ ├── CommandBarMenu.resx
│ ├── Rebar.cs
│ ├── Rebar.resx
│ ├── ToolBarEx.cs
│ ├── ToolBarEx.resx
│ └── ToolBarItem.cs
├── Controls.resX
├── General
│ ├── ColorUtil.cs
│ ├── DoubleBuffer.cs
│ ├── Enumerations.cs
│ ├── GDIUtil.cs
│ ├── ResourceUtil.cs
│ └── TextUtil.cs
├── licenses.licx
├── Menus
│ ├── ColorGroup.cs
│ ├── DrawCommand.cs
│ ├── MenuCommand.cs
│ ├── MenuCommand.resx
│ ├── MenuControl.cs
│ ├── MenuControlDesigner.cs
│ ├── MenuControl.resx
│ ├── MenuItemEx.cs
│ ├── MenuItemEx.resx
│ └── PopupMenu.cs
├── obj
│ └── Debug
│ ├── temp
│ ├── TempPE
│ ├── UtilityLibrary.CommandBars.ChevronMenu.resources
│ ├── UtilityLibrary.CommandBars.CommandBarMenu.resources
│ ├── UtilityLibrary.CommandBars.ReBar.resources
│ ├── UtilityLibrary.CommandBars.ToolBarEx.resources
│ ├── UtilityLibrary.dll
│ ├── UtilityLibrary.dll.incr
│ ├── UtilityLibrary.Menus.MenuCommand.resources
│ ├── UtilityLibrary.Menus.MenuControl.resources
│ ├── UtilityLibrary.Menus.MenuItemEx.resources
│ ├── UtilityLibrary.pdb
│ ├── UtilityLibrary.projdata
│ ├── UtilityLibrary.projdata1
│ ├── UtilityLibrary.projdata2
│ ├── UtilityLibrary.Resources.Controls.resources
│ ├── UtilityLibrary.Resources.ImagesColorPicker.resources
│ ├── UtilityLibrary.Resources.ImagesMenu.resources
│ ├── UtilityLibrary.Resources.SortedListView.resources
│ ├── UtilityLibrary.WinControls.BorderLabel.resources
│ ├── UtilityLibrary.WinControls.ButtonEx.resources
│ ├── UtilityLibrary.WinControls.CheckBoxEx.resources
│ ├── UtilityLibrary.WinControls.ColorComboBox.resources
│ ├── UtilityLibrary.WinControls.ColorListBox.resources
│ ├── UtilityLibrary.WinControls.ColorPickerDropDown.resources
│ ├── UtilityLibrary.WinControls.CustomColorDlg.resources
│ ├── UtilityLibrary.WinControls.EditCtrlHook.resources
│ ├── UtilityLibrary.WinControls.ListViewEx.resources
│ ├── UtilityLibrary.WinControls.NewColorArgs.resources
│ ├── UtilityLibrary.WinControls.NumericTextBox.resources
│ ├── UtilityLibrary.WinControls.OutlookBar.resources
│ ├── UtilityLibrary.WinControls.ProgressBarEx.resources
│ ├── UtilityLibrary.WinControls.RadioButtonEx.resources
│ ├── UtilityLibrary.WinControls.TextBoxEx.resources
│ ├── UtilityLibrary.WinControls.TextComboBox.resources
│ └── UtilityLibrary.WinControls.TreeViewEx.resources
├── Resources
│ ├── Controls.resX
│ ├── DragCursor.cur
│ ├── ImagesColorPicker.resX
│ ├── ImagesMenu.resX
│ ├── MenuControlImages.resX
│ └── SortedListView.resX
├── UtilityLibrary.csproj
├── UtilityLibrary.csproj.user
├── UtilityLibrary.sln
├── UtilityLibrary.suo
├── Win32
│ ├── Enums.cs
│ ├── Functions.cs
│ ├── RegistryUtil.cs
│ └── Structs.cs
└── WinControls
├── BorderLabel.cs
├── BorderLabel.resx
├── ButtonEx.cs
├── ButtonEx.resx
├── CheckBoxEx.cs
├── CheckBoxEx.resx
├── ColorComboBox.cs
├── ColorComboBox.resx
├── ColorListBox.cs
├── ColorListBox.resx
├── ColorPicker.cs
├── ColorPickerDropDown.cs
├── ColorPickerDropDown.resx
├── ColorPicker.resx
├── ComboBoxBase.cs
├── ComboBoxBase.resx
├── CustomColorDlg.cs
├── CustomColorDlg.resx
├── ImageComboBox.cs
├── ListViewEx.cs
├── ListViewEx.resx
├── NumericTextBox.cs
├── NumericTextBox.resx
├── OutlookBar.cs
├── OutlookBar.resx
├── ProgressBarEx.cs
├── ProgressBarEx.resx
├── RadioButtonEx.cs
├── RadioButtonEx.resx
├── TextBoxEx.cs
├── TextBoxEx.resx
├── TextComboBox.cs
├── TextComboBox.resx
├── TreeViewEx.cs
└── TreeViewEx.resx
26 directories, 147 files
评论